home *** CD-ROM | disk | FTP | other *** search
- program ntc_server;
- {
- Copyright (C) 2004 - 2006 Andrew Sprott
-
- http://astronomy.crysania.co.uk
- astro@trefach.co.uk
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- }
-
- uses
- Forms,
- ntc_server_form in 'ntc_server_form.pas' {scope},
- ntc_server_control in 'ntc_server_control.pas' {scope_control},
- ntc_server_focus in 'ntc_server_focus.pas' {scope_focus},
- ntc_server_info in 'ntc_server_info.pas' {scope_info},
- ntc_server_config in 'ntc_server_config.pas' {scope_config},
- ntc_server_network in 'ntc_server_network.pas' {scope_network},
- ntc_server_comms in 'ntc_server_comms.pas' {scope_comms},
- ntc_server_observer in 'ntc_server_observer.pas' {scope_observer},
- ntc_server_object in 'ntc_server_object.pas',
- ntc_server_button in 'ntc_server_button.pas',
- ntc_server_tracking in 'ntc_server_tracking.pas' {scope_tracking},
- ntc_server_calculus in 'ntc_server_calculus.pas',
- ntc_server_about in 'ntc_server_about.pas' {scope_about},
- ntc_server_search in 'ntc_server_search.pas' {scope_search},
- ntc_server_sun in 'ntc_server_sun.pas' {scope_sun},
- ntc_server_moon in 'ntc_server_moon.pas' {scope_moon},
- ntc_server_planets in 'ntc_server_planets.pas' {scope_planets},
- ntc_server_catalogs in 'ntc_server_catalogs.pas' {scope_catalogs};
-
- {$R *.res}
-
- begin
- Application.Title := 'Network Server';
- Application.CreateForm(Tscope, scope);
- Application.CreateForm(Tscope_config, scope_config);
- Application.CreateForm(Tscope_comms, scope_comms);
- Application.CreateForm(Tscope_control, scope_control);
- Application.CreateForm(Tscope_focus, scope_focus);
- Application.CreateForm(Tscope_info, scope_info);
- Application.CreateForm(Tscope_observer, scope_observer);
- Application.CreateForm(Tscope_search, scope_search);
- Application.CreateForm(Tscope_network, scope_network);
- Application.CreateForm(Tscope_tracking, scope_tracking);
- Application.CreateForm(Tscope_about, scope_about);
- Application.CreateForm(Tscope_sun, scope_sun);
- Application.CreateForm(Tscope_moon, scope_moon);
- Application.CreateForm(Tscope_planets, scope_planets);
- Application.CreateForm(Tscope_catalogs, scope_catalogs);
- application.Run;
- end.
-
-